13bb7c04f513a466d88093a1dfb1ad2e7c6dd966,src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSampler.java,HTTPSampler,getProtocol,#,144

Before Change


	}
	public String getProtocol()
	{
		return getPropertyAsString(PROTOCOL);
	}
	/**
	 *  Sets the Path attribute of the UrlConfig object

After Change


	}
	public String getProtocol()
	{
		String protocol= getPropertyAsString(PROTOCOL);
		if (protocol==null || protocol.equals(""))
		{
		  return DEFAULT_PROTOCOL;
		}